home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 997 b | 50 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _ODSESSN_
- #define _ODSESSN_
-
- #ifndef _ODSESSNB_
- #include "ODSessnB.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODSession;
-
- //==============================================================================
- // ODSession
- //==============================================================================
-
- interface ODSession : ODBaseSession
- {
- void InitSession();
- void GetUserName(out ODIText name);
-
- //#---------------------------------
- //# Data Interchange
-
- ODUpdateID UniqueUpdateID();
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODSession;
-
- override:
- Purge;
-
- releaseorder:
- UniqueUpdateID,
- GetUserName,
- InitSession;
- };
- #endif
- };
-
-
- #endif // _ODSESSN_
-